From: Stefan Monnier Date: Mon, 17 Nov 2003 23:23:15 +0000 (+0000) Subject: (coding_restore_composition): Lisp_Object/int mixup. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~24967 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=554ce501bccbf8ea109429d63e20df9f47778e4c;p=emacs.git (coding_restore_composition): Lisp_Object/int mixup. --- diff --git a/src/coding.c b/src/coding.c index 897538f3835..910fc8faa68 100644 --- a/src/coding.c +++ b/src/coding.c @@ -5458,8 +5458,8 @@ coding_restore_composition (coding, obj) for (j = 0; j < len; j++) args[j] = make_number (data[4 + j]); components = (method == COMPOSITION_WITH_ALTCHARS - ? Fstring (make_number (len), args) - : Fvector (make_number (len), args)); + ? Fstring (len, args) + : Fvector (len, args)); } compose_text (data[1], data[2], components, Qnil, obj); }